values

pure function values(): list<V>

Returns a list containing the values of this map.

Examples:

  • [1: 'a', 2: 'b', 3: 'c'].values() returns ['a', 'b', 'c'].

  • map<K,V>().values() returns [] (where K and V are valid types).

Since

0.6.0